home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 1146 / 1146.xpi / chrome / screengrab.jar / content / ActionChoice.xul < prev    next >
Extensible Markup Language  |  2009-03-09  |  1KB  |  29 lines

  1. <?xml version="1.0"?>
  2. <!DOCTYPE dialog [
  3.     <!ENTITY % globalDTD SYSTEM "chrome://global/locale/global.dtd">
  4.     %globalDTD;
  5.     <!ENTITY % screengrabDTD SYSTEM "chrome://screengrab/locale/screengrab.dtd">
  6.     %screengrabDTD;
  7.     <!ENTITY % htmlDTD PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
  8.     %htmlDTD;
  9. ]>
  10.  
  11. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  12. <?xml-stylesheet href="style.css" type="text/css"?>
  13. <dialog xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  14.     xmlns:html="http://www.w3.org/1999/xhtml"
  15.     title="Choose where to put it..."
  16.     id="sg.TargetChoice">
  17.  
  18.     <keyset>
  19.         <key keycode="VK_ESCAPE" oncommand="self.close();"/>
  20.     </keyset>
  21.  
  22.     <dialogheader id="logo" title="Screengrab!" description="Choose where to put it..." orient="vertical" style="font-size: smaller;"/>
  23.     <vbox>
  24.         <button label="Save to file..." onclick="window.arguments[0].choices.action = 'SaveAction'; self.close();"/>
  25.         <button label="Copy to clipboard" onclick="window.arguments[0].choices.action = 'CopyAction'; self.close();"/>
  26.         <button label="Upload to ScrnShots..." onclick="window.arguments[0].choices.action = 'UploadScrnshotsAction'; self.close();"/>
  27.     </vbox>
  28. </dialog>
  29.